.container{
    min-height: 100vh;
    padding-top: 100px;
    text-align: center;
    background-color: #d1edfb;
    background-image: url('../images/bg2.png');
    background-color: rgba(#d1edfb); /* Adjust the opacity here */
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container h1{
    font-size: 40px;
    color: #7450af;
    margin-bottom: 20px;
}

.container h2{
    font-size: 25px;
    color: #7450af;
    margin-bottom: 50px;
}

.contact-page-holder{
    display: flex;
    justify-content: center;

    padding: 50px;
    padding-bottom: 50px;
    width: 80%;
    margin: 0 auto;
    gap: 20px;
}

.left-side{
    width: 50%;
    display: flex;
    flex-direction: column;
    text-align: left;
    background-color: #e8f4fc;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #7450af;
}

.right-side{
    width: 50%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Mailer */
.mailer-form-holder{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    width: 80%;
    margin: 0 auto;
}

.mailer-form-holder form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.mailer-form-holder form input,
.mailer-form-holder form textarea{
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #7450af;
    font-size: 20px;
}

textarea{
    resize: none;
    height: 200px;
}

.mailer-form-holder form input:focus,
.mailer-form-holder form textarea:focus{
    outline: none;
    border: 1px solid #7450af;
}

.mailer-form-holder form button{
    background-color: #7450af;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 1px solid #7450afb9;
}

.mailer-form-holder form button:hover{
    background-color: #7450afb9;
}

form label{
    font-size: 20px;
    color: #7450af;
}

/* Right side */

.right-side h2{
    font-size: 30px;
    color: #7450af;
    margin-bottom: 5px;
}

.right-side p{
    font-size: 20px;
    color: #7450af;
}

.card-holder{
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    width: 100%;
    margin: 30px auto;
}

.card{
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 20px;
    background-color: white;
    border-radius: 20px;
    border: 1px solid #7450af;
    margin-bottom: 20px;
    gap: 30px;
    color: #7450af;
}

.text-holder a{
    color: #7450af; 
}

.card .image-holder{
    padding: 15px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #7450af;
    border-radius: 50%;
}

.card .image-holder img{
    width: 30px;
    height: 30px;
}

/* Mobile */
@media (max-width: 768px) {
        .container{
        background-image: url('../images/mobile-bg.png');

    }
    .contact-page-holder{
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }

    .left-side,
    .right-side{
        width: 100%;
    }

    .mailer-form-holder{
        width: 100%;
    }
}